home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- repeat with i = 7 down to 0
- set the visible of sprite (24 + i) to 1
- end repeat
- repeat with i = 6 down to 0
- set the visible of sprite (24 + i) to 0
- end repeat
- updateStage()
- repeat while the mouseDown = 1
- if rollOver(38) = 1 then
- set the visible of sprite 30 to 0
- updateStage()
- end if
- end repeat
- end
-
- on mouseUp
- if rollOver(38) = 1 then
- set the soundLevel to 6
- else
- repeat with i = 7 down to 0
- set the visible of sprite (24 + i) to 1
- end repeat
- repeat with i = the soundLevel down to 0
- set the visible of sprite (24 + i) to 0
- end repeat
- end if
- end
-